queue with alternating priority - tradução para russo
Diclib.com
Dicionário Online

queue with alternating priority - tradução para russo

ABSTRACT DATA TYPE IN COMPUTER SCIENCE
Priority queuing; Priority queues; Priority traffic; Queue with priorities; Priority Queue; PriorityQueue; Min-priority queue; Minimum priority queue; Strict priority queuing; Parallel priority queue; Applications of priority queues
  • ''k_extract-min'' is executed on a priority queue with three processors. The green elements are returned and removed from the priority queue.

queue with alternating priority      
система массового обслуживания с чередующимися приоритетами
priority queue         
1) система массового обслуживания с приоритетами
2) очередь (требований) с приоритетами
queuing         
  • 1940s poster promoting safety procedures during civil defense air raid drills.
  • People lined up when boarding a suburban bus in Prague.
  • Commuters at [[Osaka Station]] waiting to board a train. Queues for specific trains are marked by color-coded lines on the platform.
  • Waiting number ticket from the main post office of Prague 5 district, Czech Republic. The tickets contains a specification "Letter services – mass submits" and counters No. 8 and 9 which can deal with such a requirement.
  • Waiting queue call system in the Prague main post office. People have number tickets from the machine and are waiting until their number with a number of the counter appears at the red displays.
  • 1943 [[soup kitchen]] queue in [[Aarhus]], Denmark
LINE OF PEOPLE WAITING FOR GOODS OR SERVICES ON A FIRST-COME, FIRST-SERVED BASIS, OR AN AREA WHERE SUCH A LINE FORMS
Queue areas; Queueing; Waiting area; Queuing; Waiting in line; Wait in line; Standing in line; Waitlist management; Queue line
постановка в очередь, формирование очереди. Например, процедура, посредством которой вызовы, направляемые с MS или поступающие на MS, поддерживаются в состоянии ожидания в связи с перегрузкой радиотракта или занятостью вызываемой стороны.

Definição

priority queue
<programming> A data structure with three operations: insert a new item, return the highest priority item, and remove the highest priority item. The obvious way to represent priority queues is by maintaining a sorted list but this can make the insert operation very slow. Greater efficiency can be achieved by using heaps. (1996-03-12)

Wikipédia

Priority queue

In computer science, a priority queue is an abstract data-type similar to a regular queue or stack data structure. Each element in a priority queue has an associated priority. In a priority queue, elements with high priority are served before elements with low priority. In some implementations, if two elements have the same priority, they are served in the same order that they were enqueued in. In other implementations, the order of elements with the same priority is undefined.

While priority queues are often implemented using heaps, they are conceptually distinct from heaps. A priority queue is an abstract data structure like a list or a map; just as a list can be implemented with a linked list or with an array, a priority queue can be implemented with a heap or another method such as an unordered array.